home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / powerd / source / lib / powerd_lib.lha / PowerD_PPC / Abs.ass next >
Text File  |  2000-07-11  |  168b  |  15 lines

  1.  
  2. # Abs(r3:LONG)(r3:LONG)
  3.  
  4.     .text
  5.     .global    _Abs
  6.  
  7. _Abs:    mr.    r3,r3        # tstw r3
  8.     bge    end
  9.     neg    r3,r3        # negate
  10. end:    blr
  11.  
  12.     .local    end
  13.     .type    _Abs,@function
  14.     .size    _Abs,$-_Abs
  15.